home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / GENCSRC.ZIP / FORMOUT.C < prev    next >
C/C++ Source or Header  |  1987-11-21  |  414b  |  17 lines

  1.                                         /* Chapter 10 - Program 1 */
  2. #include "stdio.h"
  3. main()
  4. {
  5. FILE *fp;
  6. char stuff[25];
  7. int index;
  8.  
  9.    fp = fopen("TENLINES.TXT","w");   /* open for writing */
  10.    strcpy(stuff,"This is an example line.");
  11.  
  12.    for (index = 1;index <= 10;index++)
  13.       fprintf(fp,"%s  Line number %d\n",stuff,index);
  14.  
  15.    fclose(fp);    /* close the file before ending program */
  16. }
  17.